home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 16
/
Aminet 16 (1996)(GTI - Schatztruhe)[!][Dec 1996].iso
/
Aminet
/
dev
/
c
/
Mesa_2_0_Amiga.readme
< prev
next >
Wrap
Text File
|
1996-11-03
|
41KB
|
866 lines
Short: 3D library, OpenGL based, Amiga v1.5
Author: brianp@ssec.wisc.edu (BrianP) Amiga Port: d94sz@efd.lth.se (Stefan Zivkovic)
Uploader: d94sz@efd.lth.se (Stefan Zivkovic)
Version: Mesa v2.0 Amiga version 1.5
Type: dev/c
Requires: System v39, SAS C Compiler 6.56
Replaces: dev/c/Mesa-1.2.8.lha
The Mesa 3-D graphics library
Version 2.0
Copyright (C) 1995-1996 Brian Paul
Introduction
============
Mesa is a 3-D graphics library with an API which is very similar to that
of OpenGL*. To the extent that Mesa utilizes the OpenGL command syntax
or state machine, it is being used with authorization from Silicon Graphics,
Inc. However, the author makes no claim that Mesa is in any way a
compatible replacement for OpenGL or associated with Silicon Graphics, Inc.
Those who want a licensed implementation of OpenGL should contact a licensed
vendor. This software is distributed under the terms of the GNU Library
General Public License, see the LICENSE file for details.
* OpenGL(R) is a registered trademark of Silicon Graphics, Inc.
Miscellaneous
=============
There is a Amiga Mesa WWW page: http://www.efd.lth.se/~d94sz/amesa
and the orginal Mesa WWW page: http://www.ssec.wisc.edu/~brianp/Mesa.html
Since the OpenGL API is used, OpenGL documentation can serve as the
documentation for Mesa's core functions. Here are a few sources:
Man pages: http://www.digital.com:80/pub/doc/opengl/
Spec doc: http://www.sgi.com/Technology/openGL/glspec/glspec.html
Author
======
Brian Paul
Space Science and Engineering Center
University of Wisconsin - Madison
1225 W. Dayton St.
Madison, WI 53706
brianp@ssec.wisc.edu
AMIGA PORT of MESA: THE OPENGL SOFTWARE EMULATION by Stefan Zivkovic
====================================================================
When I first read about OPENGL in the summer of 1995 I was happy and filled with
joy. A few days later I surfed to the mesa homepage but only to discover that
there was no Amiga version. In the beginning of 1996 someone released a AMIWIN
version so I took the archive home to try it out, but it stayed packed on my HD.
One day when I was home and playing around with my HD I saw the archive and
started to try to make it work. Without luck as it seemed that you needed
the AMIWIN Includes and LIBFILES. But I also discovered that it was possible
to port it with not to much effort (WRONG THERE) so I begun.
For the Amiga there is only three important files + one directory.
src/Amigamesa.c The mesa GL Amiga implementation
(ddsample.c with some Amiga code)
src-tk/Awindow.c The tk (and aux) machine specific code)
include/GL/Amigamesa.h The prototypes for Amigamesa
Amiga/#?
Installing
==========
To spread the amiga files over the archive you will nead lha in your path
and run the installer script in /amiga (or just unpack AMesa.lha yourself)
Compiling
=========
Just execute mklib.amiga (will appear if you have installed it correctly)
About the code.
===============
The Code is compiled with cpu=020 math=ieee
If you would like it different then use the /Amiga/scoptions read next statement
The common scoptions file is in /Amiga
Here exists a scoption that is used in the WHOLE package, change math here
and it will reflect in all dirs
In /Amiga/library there are previews of files to the shared-library version
(This doesn't work yet but should give you an idea of how to use it)
In /Amiga/Examples there should be some amiga-demo code,
but I've got no code yet so feel free to send me your own examples.
In this state it only renders on a window on a up-to 256 col display but I
have plans to port it to CyberGFX the problem is that I don't own a gfx-card
so this is very low on my priority list, this could change if I had one :)
All tk actions in tkExec are not finished. But most of them is. (low priority)
Most of the examples work. (ALL?)
etc. etc.
Write your own OpenGL code
==========================
1. For a easy start, look at the examples in /book/ and modify them
The examples uses a portable layer toolkit Not amiga specific at all
Until The shared library is ready you have to define AMIGALIB when
using <GL/gl.h>
2. For a better amigaprogram just open a window (on your favourite screen) and
add a few lines in your source:
-----------------------------------------------------------------------------
/* ADD where you want it */
#include <GL/gl.h>
Init() /* sets up viewport and projections */
{
glMatrixMode (GL_PROJECTION); /* prepare for and then */
glLoadIdentity (); /* define the projection */
glFrustum (-1.0, 1.0, -1.0, 1.0, 1.5, 20.0);/* transformation */
glMatrixMode (GL_MODELVIEW); /* back to modelview matrix*/
glViewport (0, 0, 200, 200); /* define the viewport */
} /* ^ ^ ^^^ ^^^--- The size of the mesa/openGL window */
/* ADD In after you opened your window */
struct amigamesa_context *glcont;
glcont=AmigaMesaCreateContextTags(
AMA_DrawMode,AMESA_AGA,
AMA_Window,(unsigned long) test_window, // My Windowptr
AMA_RastPort,(unsigned long) test_window->RPort,
AMA_Screen,(unsigned long) test_window->WScreen,
AMA_DoubleBuf, GL_FALSE, // or GL_TRUE
AMA_RGBMode, GL_TRUE, // -"-
AMA_Left, test_window->BorderLeft, // offset from left edgr
AMA_Bottom, test_window->BorderBottom+1, // offset from bottom edgr
TAG_DONE,0);
// Neaded tags is AMA_RastPort,AMA_Screen if you supply AMA_Window
// it looks for RastPort and Screen in it so a Window_ptr will do.
if (glcont)
{
AmigaMesaMakeCurrent(glcont,glcont->buffer);
/* All your gl comands */
/*handle_window_events(test_window); or whatever */
AmigaMesaDestroyContext(glcont);
}
/* Don't forget to call glViewport() when you resize the window */
------------------------------------------------------------------------------
if you set doublebuff to GL_TRUE then you just switch buffer with
AmigaMesaSwapBuffers(glcont);
For more info on the internal of the Amiga port you can check the files
src/Amigamesa.c and include/GL/Amigamesa.h for tk check src-tk/Awindow.c
And info on how to write your own gfx-routines read include/GL/amigamesa.h for
more instructions.
THINGS THAT MAY GO WRONG
========================
WARNING The api has changed on AmigaMesaCreateContext() it is now called with
a taglist. Read /include/GL/amigamesa.h
Scoptions that should not be changed is Precision=MIXED, NoStackExtend, NoStackCheck.
It compiles but all examples crash everytime:
Set your stack high about 50kb or more.
Linking complains about not finding _glBegin(): or @glBegin():
You have compiled some code using the stack and some using registers as
parameter passing, You have to chose one of them and us it on both places.
The colors are really bad:
To emulate 24bit I alloc 255 colors in the beginning spread over the
palette and then use it. If you'd like better colors, buy a GFX-Card.
(And wait for gfx-card versions.)
Resizing is sometimes very very unhealthy.
LATEST VERSION:
===============
http://www.efd.lth.se/~d94sz/amesa
TODO:
=====
Debugg.
Fix resizing bug.
All tk stuff.
CyberGFX driver.
Make some amiga examples code (please send in your smal programs).
FUTURE:
=======
A shared library would be nice. (I have started)
Faster and better. (You may have some nice idea?)
CyberGFX support. (I don't have a Gfx card myself, but any offer to
give me one would result in CyberGFX support :)
HISTORY:
========
Release:
0.8 This code worked with Mesa 1.2.6 and all makefiles also.
But when I released it, Mesa 1.2.7 was released and some changes were made.
It didn't work.
0.9 Makefiles is remapped to work with Mesa 1.2.7.
Double buffering works.
Implemented fast_poly_draw (big speed improvement).
tkExec a few more tests were done. (right & middle mousebutton is not
implemented)
1.0 I've put a common scoption file in /Amiga (thanks to Kamil Iskra).
Due to the common scoptions you can change CPU and math more easy ,and
compiler options set to default math=ieee, cpu=020 so that it works on
1200's and up
Many bugfixes (thanks to Daniel Jönsson).
Have fixed the smakefile name collision with AMIWIN version.
Mesa 1.2.8 Fixed.
Spellcorrection of the docs were made by Peter Sandén.
(Blame him, not me!)
All tk's windows are opened on a pubscreen named "MESA" if it exists.
1.1 Faster and more stable (Many thanks to Jorge Acereda (JAM))
Faster pen usage now it allocates 255 pens and use them (thanks to
Stefan Burström)
A few enhancements here and there.
Fixed a smake bug ignore=A only works in the latest SAS version. Now I
have changed it to IGN=ALL (Thanx to everyone who reported this one)
1.2 Removed math from smakefiles, SAS handles this better self. (Kamil Iskra)
Fixed a serious drawing bug (appeared when using GL_SMOTH).
Fixed a very flexible programming API for future gfx-board implementations
Added a BOOL AmigaMesaSetDefs(struct TagItem *tagList); usefull for future enhancements
***'API change: AmigaMesaCreateContext uses taglist se include/GL/amigamesa.h
Faster on doublebuffer rendering. (Now I convert whole double buffer c2p)
Easier to integrate future gfx-cards routines. Look in include/GL/amigamesa.h
tk toolkit fixed to work better. Thanks to Georg 'Wulf' Krämer
1.4 Uppdated to reflect Mesa 2.0
Small Bugfixes. Relesed With Mesa 2.0
1.5 A few bugs intruduced in 1.4 was fixed (a workaround SAS oml/slink bug)
Due to a bug in SAS (oml/slink) 1.4 didn't work, this version should work better.
Please contact me with suggestions and additional info.
You can reach me at:
d94sz@efd.lth.se
Or mail:
Stefan Zivkovic
Kämnärsv. 9L:225
226 46 LUND
Or Phone:
+46 46 150763
============================= Archive contents =============================
Original Packed Ratio Date Time Name
-------- ------- ----- --------- -------- -------------
2996 1007 66.3% 14-Oct-96 00:02:54 +AmigaMesa.Install
1919 1046 45.4% 14-Oct-96 00:02:54 +AmigaMesa.Install.info
1351 457 66.1% 14-Oct-96 00:02:52 +Build.info
290 174 40.0% 14-Oct-96 00:02:52 +SCoptions
1736 1047 39.6% 14-Oct-96 00:02:52 +SCoptions.info
23724 9656 59.2% 14-Oct-96 00:02:52 +FileReplace
4194 1538 63.3% 14-Oct-96 00:02:52 +FileReplace.cpp
58311 6554 88.7% 14-Oct-96 00:02:52 +Fixprotos
17967 3208 82.1% 14-Oct-96 00:02:52 +gl.fd
53801 10162 81.1% 14-Oct-96 00:02:52 +gl.h
15499 2560 83.4% 14-Oct-96 00:02:52 +gl_pragma.h
576 286 50.3% 14-Oct-96 00:02:52 +installscript
4472 1501 66.4% 14-Oct-96 00:02:54 +ht__colors.a
7502 1283 82.8% 14-Oct-96 00:02:54 +ht_colors.c
435 250 42.5% 14-Oct-96 00:02:54 +ht_colors.h
311 184 40.8% 14-Oct-96 00:02:54 +SCOPTIONS
1674 1076 35.7% 14-Oct-96 00:02:54 +SCoptions.info
5293 2274 57.0% 29-Oct-96 19:33:28 +accanti.c
4594 1969 57.1% 29-Oct-96 19:33:28 +accnot.c
7270 2786 61.6% 29-Oct-96 19:33:28 +accpersp.c
8368 3572 57.3% 29-Oct-96 19:33:28 +accum.c
3893 1985 49.0% 29-Oct-96 19:33:28 +aim.c
3446 1705 50.5% 29-Oct-96 19:33:30 +alpha.c
4393 2040 53.5% 29-Oct-96 19:33:30 +alpha3D.c
3802 1888 50.3% 29-Oct-96 19:33:30 +anti.c
3643 1859 48.9% 29-Oct-96 19:33:30 +antiindex.c
3646 1825 49.9% 29-Oct-96 19:33:30 +antipindex.c
3483 1755 49.6% 29-Oct-96 19:33:30 +antipoint.c
4613 2088 54.7% 29-Oct-96 19:33:30 +antipoly.c
3451 1738 49.6% 29-Oct-96 19:33:30 +bezcurve.c
4291 1961 54.2% 29-Oct-96 19:33:30 +bezmesh.c
3900 1846 52.6% 29-Oct-96 19:33:30 +bezsurf.c
4487 2007 55.2% 29-Oct-96 19:33:30 +checker.c
4491 2009 55.2% 29-Oct-96 19:33:30 +checker2.c
4356 1958 55.0% 29-Oct-96 19:33:30 +chess.c
3258 1667 48.8% 29-Oct-96 19:33:30 +clip.c
4380 1925 56.0% 29-Oct-96 19:33:32 +colormat.c
4443 1973 55.5% 29-Oct-96 19:33:32 +cone.c
3393 1735 48.8% 29-Oct-96 19:33:32 +cube.c
3567 1793 49.7% 29-Oct-96 19:33:32 +curve.c
3410 1750 48.6% 29-Oct-96 19:33:32 +depthcue.c
3946 1819 53.9% 29-Oct-96 19:33:32 +disk.c
8330 3303 60.3% 29-Oct-96 19:33:32 +dof.c
5508 2453 55.4% 29-Oct-96 19:33:32 +dofnot.c
3869 1857 52.0% 29-Oct-96 19:33:32 +double.c
3278 1639 50.0% 29-Oct-96 19:33:32 +drawf.c
5018 2192 56.3% 29-Oct-96 19:33:32 +feedback.c
5439 2462 54.7% 29-Oct-96 19:33:32 +fog.c
4311 1982 54.0% 29-Oct-96 19:33:32 +fogindex.c
11691 3060 73.8% 29-Oct-96 19:33:32 +font.c
10102 1293 87.2% 29-Oct-96 19:33:28 +Imakefile
5900 2703 54.1% 29-Oct-96 19:33:32 +jitter.h
3636 1788 50.8% 29-Oct-96 19:33:32 +light.c
3549 1717 51.6% 29-Oct-96 19:33:32 +linelist.c
4194 1925 54.1% 29-Oct-96 19:33:32 +lines.c
3504 1762 49.7% 29-Oct-96 19:33:32 +list.c
3665 1824 50.2% 29-Oct-96 19:33:32 +list2.c
1448 766 47.0% 29-Oct-96 19:33:28 +Makefile
3915 1909 51.2% 29-Oct-96 19:33:32 +maplight.c
10835 2650 75.5% 29-Oct-96 19:33:34 +material.c
5538 2176 60.7% 29-Oct-96 19:33:34 +mipmap.c
3821 1799 52.9% 29-Oct-96 19:33:34 +model.c
4343 2091 51.8% 29-Oct-96 19:33:34 +movelight.c
1868 727 61.0% 29-Oct-96 19:33:28 +NOTES
5996 2451 59.1% 29-Oct-96 19:33:34 +nurbs.c
5554 2531 54.4% 29-Oct-96 19:33:34 +pickdepth.c
4440 2087 52.9% 29-Oct-96 19:33:34 +pickline.c
5590 2554 54.3% 29-Oct-96 19:33:34 +picksquare.c
5220 2052 60.6% 29-Oct-96 19:33:34 +plane.c
3720 1808 51.3% 29-Oct-96 19:33:36 +planet.c
3870 1836 52.5% 29-Oct-96 19:33:36 +planetup.c
4610 1843 60.0% 29-Oct-96 19:33:36 +polys.c
2260 1229 45.6% 29-Oct-96 19:33:28 +README
3868 1806 53.3% 29-Oct-96 19:33:36 +robot.c
4236 1935 54.3% 29-Oct-96 19:33:36 +sccolorlight.c
4210 1918 54.4% 29-Oct-96 19:33:36 +scene.c
4084 1856 54.5% 29-Oct-96 19:33:36 +scenebamb.c
4114 1875 54.4% 29-Oct-96 19:33:36 +sceneflat.c
0 0 0.0% 14-Oct-96 00:02:56 +SCOPTIONS
7002 2754 60.6% 29-Oct-96 19:33:36 +select.c
2589 1390 46.3% 29-Oct-96 19:33:36 +simple.c
2431 1129 53.5% 14-Oct-96 00:02:54 +Smakefile
3243 1646 49.2% 29-Oct-96 19:33:36 +smooth.c
3014 1577 47.6% 29-Oct-96 19:33:36 +sphere.c
5314 2269 57.3% 29-Oct-96 19:33:38 +stencil.c
5057 2203 56.4% 29-Oct-96 19:33:38 +stroke.c
4416 2101 52.4% 29-Oct-96 19:33:38 +surface.c
4894 2121 56.6% 29-Oct-96 19:33:38 +tea.c
4655 1991 57.2% 29-Oct-96 19:33:38 +teaambient.c
7340 2903 60.4% 29-Oct-96 19:33:38 +teapots.c
4342 2038 53.0% 29-Oct-96 19:33:38 +texgen.c
4850 2150 55.6% 29-Oct-96 19:33:38 +texturesurf.c
5208 2340 55.0% 29-Oct-96 19:33:40 +trim.c
4369 2196 49.7% 29-Oct-96 19:33:40 +xfont.c
3243 1320 59.2% 29-Oct-96 19:33:20 +bounce.c
1573 585 62.8% 29-Oct-96 19:33:20 +fdraw.f
858 455 46.9% 29-Oct-96 19:33:20 +ftest.c
4708 964 79.5% 29-Oct-96 19:33:20 +gamma.c
7682 2033 73.5% 29-Oct-96 19:33:20 +gears.c
2403 1068 55.5% 29-Oct-96 19:33:20 +glxdemo.c
3628 1540 57.5% 29-Oct-96 19:33:20 +glxpixmap.c
2004 433 78.3% 29-Oct-96 19:33:18 +Imakefile
6091 2032 66.6% 29-Oct-96 19:33:20 +isosurf.c
418278 67175 83.9% 29-Oct-96 19:33:26 +isosurf.dat
1513 864 42.8% 29-Oct-96 19:33:18 +Makefile
8024 3265 59.3% 29-Oct-96 19:33:20 +offset.c
3420 1329 61.1% 29-Oct-96 19:33:20 +osdemo.c
8459 2559 69.7% 29-Oct-96 19:33:20 +reflect.c
0 0 0.0% 14-Oct-96 00:02:56 +SCOPTIONS
2692 1248 53.6% 14-Oct-96 00:02:56 +Smakefile
2827 1004 64.4% 29-Oct-96 19:33:20 +spin.c
8054 2613 67.5% 29-Oct-96 19:33:20 +tess_demo.c
1380 606 56.0% 29-Oct-96 19:33:20 +test0.c
6460 1838 71.5% 29-Oct-96 19:33:20 +texobj.c
7048 1869 73.4% 29-Oct-96 19:33:20 +vgears.c
1039 565 45.6% 29-Oct-96 19:33:20 +vindex.c
1352 565 58.2% 29-Oct-96 19:33:20 +vtest.c
1866 918 50.8% 29-Oct-96 19:33:22 +winpos.c
7536 2187 70.9% 29-Oct-96 19:33:22 +xdemo.c
479 265 44.6% 29-Oct-96 19:32:48 +IAFA-PACKAGE
161 117 27.3% 29-Oct-96 19:32:48 +Imakefile
10401 3960 61.9% 14-Oct-96 00:02:56 +Amigamesa.h
36296 6816 81.2% 29-Oct-96 19:32:50 +fgl.h
1953 841 56.9% 29-Oct-96 19:32:50 +FooMesa.h
45105 9733 78.4% 29-Oct-96 19:32:50 +gl.h
10582 3153 70.2% 29-Oct-96 19:32:50 +glu.h
5393 1972 63.4% 29-Oct-96 19:32:50 +glx.h
2740 1203 56.0% 29-Oct-96 19:32:50 +gmesa.h
6235 2413 61.2% 29-Oct-96 19:32:52 +osmesa.h
2390 1130 52.7% 29-Oct-96 19:32:52 +svgamesa.h
2614 1211 53.6% 29-Oct-96 19:32:52 +wmesa.h
6357 2194 65.4% 29-Oct-96 19:32:52 +xmesa.h
7747 2504 67.6% 29-Oct-96 19:32:50 +glaux.h
6355 2144 66.2% 29-Oct-96 19:32:50 +gltk.h
917 325 64.5% 29-Oct-96 19:32:52 +clgd5470.h
1112 394 64.5% 29-Oct-96 19:32:52 +clgd5471.h
627 294 53.1% 29-Oct-96 19:32:52 +clgd5472.h
2227 891 59.9% 29-Oct-96 19:32:52 +clgd547x.h
2393 1142 52.2% 29-Oct-96 19:32:52 +cmesa.h
6800 1502 77.9% 29-Oct-96 19:32:52 +compiler.h
27511 5364 80.5% 29-Oct-96 19:32:52 +davinci.h
3891 839 78.4% 29-Oct-96 19:32:52 +graphics.h
114 105 7.8% 29-Oct-96 19:32:52 +lut.h
157 99 36.9% 29-Oct-96 19:32:52 +misc.h
1940 528 72.7% 29-Oct-96 19:32:52 +type.h
25267 9285 63.2% 29-Oct-96 19:32:48 +LICENSE
20197 3775 81.3% 29-Oct-96 19:32:48 +Make-config
9208 2567 72.1% 29-Oct-96 19:32:48 +Makefile
3235 1458 54.9% 29-Oct-96 19:32:48 +mklib.aix
523 203 61.1% 14-Oct-96 00:02:50 +mklib.amiga
555 210 62.1% 29-Oct-96 19:32:48 +mklib.amiwin
444 288 35.1% 29-Oct-96 19:32:48 +mklib.freebsd
611 375 38.6% 29-Oct-96 19:32:50 +mklib.hpux
923 551 40.3% 29-Oct-96 19:32:50 +mklib.irix5
914 549 39.9% 29-Oct-96 19:32:50 +mklib.irix6-32
916 551 39.8% 29-Oct-96 19:32:50 +mklib.irix6-64
917 549 40.1% 29-Oct-96 19:32:50 +mklib.irix6-n32
1003 557 44.4% 29-Oct-96 19:32:50 +mklib.linux
523 296 43.4% 29-Oct-96 19:32:50 +mklib.netbsd
557 296 46.8% 29-Oct-96 19:32:50 +mklib.solaris
11470 3089 73.0% 29-Oct-96 19:34:08 +clgd5470.c
4558 968 78.7% 29-Oct-96 19:34:10 +clgd5471.c
17655 4326 75.4% 29-Oct-96 19:34:10 +clgd5472.c
6646 2071 68.8% 29-Oct-96 19:34:10 +clgd547x.c
2870 658 77.0% 29-Oct-96 19:34:10 +clrtemp.h
2674 1030 61.4% 29-Oct-96 19:34:08 +CREDITS
10931 2455 77.5% 29-Oct-96 19:34:10 +graphics.c
4394 1160 73.6% 29-Oct-96 19:34:10 +linetemp.h
904 438 51.5% 29-Oct-96 19:34:08 +Makefile
2114 673 68.1% 29-Oct-96 19:34:10 +misc.c
286 194 32.1% 29-Oct-96 19:34:10 +modes.h
790 459 41.8% 29-Oct-96 19:34:08 +NOTES
1224 666 45.5% 29-Oct-96 19:34:08 +README
13449 3789 71.8% 29-Oct-96 19:34:10 +tritemp.h
1644 565 65.6% 29-Oct-96 19:34:10 +tst.c
1736 917 47.1% 29-Oct-96 19:34:08 +Makefile.NeXT
4024 1693 57.9% 29-Oct-96 19:34:08 +nextdemo1.m
6577 2914 55.6% 29-Oct-96 19:34:08 +nextdemo2.m
8794 3586 59.2% 29-Oct-96 19:34:08 +nextdemo3.m
6327 2866 54.7% 29-Oct-96 19:34:08 +nextdemo4.m
11956 3290 72.4% 29-Oct-96 19:34:08 +nextdemo5.m
6356 2944 53.6% 29-Oct-96 19:34:08 +nextdemo6.m
3520 1644 53.2% 29-Oct-96 19:34:08 +README
4166 1975 52.5% 29-Oct-96 19:34:08 +README.rtf
50046 11458 77.1% 29-Oct-96 19:34:12 +context.c
35417 9192 74.0% 29-Oct-96 19:34:12 +MesaGl32.c
5807 1425 75.4% 29-Oct-96 19:34:12 +MesaGl32.def
1846 753 59.2% 29-Oct-96 19:34:12 +MesaGl32.h
1812 364 79.9% 29-Oct-96 19:34:12 +profile.h
226 165 26.9% 29-Oct-96 19:34:12 +README
3783 1151 69.5% 29-Oct-96 19:34:12 +wmesadef.h
31918 12786 59.9% 29-Oct-96 19:32:48 +README
9733 4600 52.7% 14-Oct-96 00:02:50 +README.AMIGA
7075 2693 61.9% 29-Oct-96 19:32:48 +README.AMIWIN
2137 1108 48.1% 29-Oct-96 19:32:48 +README.GLUT
250 178 28.8% 29-Oct-96 19:32:48 +README.OS2
51607 40654 21.2% 29-Oct-96 19:33:42 +1.rgb
39632 34493 12.9% 29-Oct-96 19:33:42 +2.rgb
89287 55470 37.8% 29-Oct-96 19:33:42 +3.rgb
45167 32654 27.7% 29-Oct-96 19:33:42 +4.rgb
3598 1527 57.5% 29-Oct-96 19:33:42 +accum.c
6263 2001 68.0% 29-Oct-96 19:33:42 +bitmap1.c
42311 4050 90.4% 29-Oct-96 19:33:42 +bitmap2.c
7279 1997 72.5% 29-Oct-96 19:33:44 +blendeq.c
3642 1354 62.8% 29-Oct-96 19:33:44 +blendxor.c
4311 1828 57.5% 29-Oct-96 19:33:44 +copy.c
4365 1648 62.2% 29-Oct-96 19:33:44 +cursor.c
5187 1829 64.7% 29-Oct-96 19:33:44 +depth.c
10722 3179 70.3% 29-Oct-96 19:33:44 +eval.c
7175 2306 67.8% 29-Oct-96 19:33:44 +fog.c
5784 2040 64.7% 29-Oct-96 19:33:44 +font.c
4256 677 84.0% 29-Oct-96 19:33:40 +Imakefile
4420 1849 58.1% 29-Oct-96 19:33:44 +line.c
36486 6004 83.5% 29-Oct-96 19:33:44 +logo.c
1173 632 46.1% 29-Oct-96 19:33:40 +Makefile
1224 587 52.0% 29-Oct-96 19:33:40 +NOTES
6494 2230 65.6% 29-Oct-96 19:33:44 +nurb.c
5220 1744 66.5% 29-Oct-96 19:33:44 +oglinfo.c
9090 3260 64.1% 29-Oct-96 19:33:44 +olympic.c
8343 2838 65.9% 29-Oct-96 19:33:44 +overlay.c
4772 1862 60.9% 29-Oct-96 19:33:44 +point.c
11544 2475 78.5% 29-Oct-96 19:33:44 +prim.c
10726 3291 69.3% 29-Oct-96 19:33:44 +quad.c
14414 2864 80.1% 29-Oct-96 19:33:40 +README
0 0 0.0% 14-Oct-96 00:02:56 +SCOPTIONS
9312 2887 68.9% 29-Oct-96 19:33:46 +select.c
5761 2028 64.7% 29-Oct-96 19:33:46 +shape.c
2851 1281 55.0% 14-Oct-96 00:02:56 +Smakefile
8879 3008 66.1% 29-Oct-96 19:33:46 +speed.c
18213 4752 73.9% 29-Oct-96 19:33:46 +sphere.c
7089 2623 62.9% 29-Oct-96 19:33:46 +star.c
3385 1452 57.1% 29-Oct-96 19:33:46 +stencil.c
8504 2701 68.2% 29-Oct-96 19:33:46 +stretch.c
7892 2524 68.0% 29-Oct-96 19:33:46 +texture.c
8333 2830 66.0% 29-Oct-96 19:33:46 +tri.c
15073 4374 70.9% 29-Oct-96 19:33:46 +wave.c
1176 263 77.6% 29-Oct-96 19:32:54 +3d.h
425 263 38.1% 29-Oct-96 19:32:54 +font.c
9720 2326 76.0% 29-Oct-96 19:32:56 +glaux.c
226 143 36.7% 29-Oct-96 19:32:56 +image.c
598 322 46.1% 29-Oct-96 19:32:54 +Imakefile
1327 747 43.7% 29-Oct-96 19:32:52 +Makefile
1414 802 43.2% 29-Oct-96 19:32:54 +Makefile.NeXT
1838 593 67.7% 29-Oct-96 19:32:54 +Mesaauxos2.def
117 86 26.4% 29-Oct-96 19:32:54 +Mesaauxos2.rsp
0 0 0.0% 14-Oct-96 00:03:00 +SCOPTIONS
27796 5155 81.4% 29-Oct-96 19:32:56 +shapes.c
2524 1207 52.1% 14-Oct-96 00:03:00 +Smakefile
6711 1782 73.4% 29-Oct-96 19:32:56 +teapot.c
3046 1078 64.6% 29-Oct-96 19:32:56 +vect3d.c
2335 647 72.2% 29-Oct-96 19:32:56 +xxform.c
732 160 78.1% 29-Oct-96 19:32:54 +depend
7554 2675 64.5% 29-Oct-96 19:32:56 +glu.c
1593 820 48.5% 29-Oct-96 19:32:56 +gluP.h
725 348 52.0% 29-Oct-96 19:32:54 +Imakefile
1690 922 45.4% 29-Oct-96 19:32:54 +Makefile
1537 549 64.2% 29-Oct-96 19:32:54 +MesaGLUos2.def
180 104 42.2% 29-Oct-96 19:32:54 +MesaGLUos2.rsp
16830 4247 74.7% 29-Oct-96 19:32:56 +mipmap.c
15792 3694 76.6% 29-Oct-96 19:32:56 +nurbs.c
5282 1808 65.7% 29-Oct-96 19:32:56 +nurbs.h
12735 3095 75.6% 29-Oct-96 19:32:56 +nurbscrv.c
37132 6346 82.9% 29-Oct-96 19:32:56 +nurbssrf.c
23677 5465 76.9% 29-Oct-96 19:32:58 +nurbsutl.c
26481 6530 75.3% 29-Oct-96 19:32:58 +polytest.c
6078 2278 62.5% 29-Oct-96 19:32:58 +project.c
18805 4383 76.6% 29-Oct-96 19:32:58 +quadric.c
9058 3843 57.5% 29-Oct-96 19:32:52 +README1
1500 762 49.2% 29-Oct-96 19:32:52 +README2
0 0 0.0% 14-Oct-96 00:03:00 +SCOPTIONS
2615 1230 52.9% 14-Oct-96 00:03:00 +Smakefile
7363 2041 72.2% 29-Oct-96 19:32:58 +tess.c
2278 1025 55.0% 29-Oct-96 19:32:58 +tess.h
9353 1919 79.4% 29-Oct-96 19:32:58 +tesselat.c
17343 5875 66.1% 14-Oct-96 00:03:00 +Awindow.c
2062 635 69.2% 29-Oct-96 19:32:58 +cursor.c
8835 1864 78.9% 29-Oct-96 19:32:58 +event.c
273995 45737 83.3% 29-Oct-96 19:33:00 +font.c
8621 1633 81.0% 29-Oct-96 19:33:00 +getset.c
4851 1392 71.3% 29-Oct-96 19:33:00 +image.c
596 317 46.8% 29-Oct-96 19:32:54 +Imakefile
2026 1046 48.3% 29-Oct-96 19:32:54 +Makefile
1505 857 43.0% 29-Oct-96 19:32:54 +Makefile.NeXT
1502 545 63.7% 29-Oct-96 19:32:54 +mesatkos2.def
118 87 26.2% 29-Oct-96 19:32:54 +MesaTkos2.rsp
997 437 56.1% 29-Oct-96 19:33:00 +private.h
0 0 0.0% 14-Oct-96 00:03:00 +SCOPTIONS
12406 1424 88.5% 29-Oct-96 19:33:00 +shapes.c
2665 1230 53.8% 14-Oct-96 00:03:00 +Smakefile
28888 8384 70.9% 29-Oct-96 19:33:00 +tkwndws.c
19572 3654 81.3% 29-Oct-96 19:33:02 +window.c
10460 2466 76.4% 29-Oct-96 19:33:02 +accum.c
1427 719 49.6% 29-Oct-96 19:33:02 +accum.h
3477 1300 62.6% 29-Oct-96 19:33:02 +alpha.c
1235 682 44.7% 29-Oct-96 19:33:02 +alpha.h
6526 1734 73.4% 29-Oct-96 19:33:02 +alphabuf.c
2350 800 65.9% 29-Oct-96 19:33:02 +alphabuf.h
60253 14431 76.0% 14-Oct-96 00:02:58 +AmigaMesa.c
66138 10153 84.6% 29-Oct-96 19:33:02 +api.c
32654 5963 81.7% 14-Oct-96 00:02:58 +api1.c
35601 5448 84.6% 14-Oct-96 00:02:58 +api2.c
19900 3861 80.5% 29-Oct-96 19:33:02 +attrib.c
1270 659 48.1% 29-Oct-96 19:33:02 +attrib.h
5619 2002 64.3% 29-Oct-96 19:33:02 +bitmap.c
1791 740 58.6% 29-Oct-96 19:33:02 +bitmap.h
17528 3831 78.1% 29-Oct-96 19:33:04 +blend.c
1714 780 54.4% 29-Oct-96 19:33:04 +blend.h
3825 1290 66.2% 29-Oct-96 19:33:04 +bresenhm.c
4946 1519 69.2% 29-Oct-96 19:33:04 +bresenhm.h
28049 6205 77.8% 29-Oct-96 19:33:04 +clip.c
1968 841 57.2% 29-Oct-96 19:33:04 +clip.h
40748 7972 80.4% 29-Oct-96 19:33:04 +cmesa.c
3224 1376 57.3% 29-Oct-96 19:33:04 +config.h
45382 11073 75.6% 29-Oct-96 19:33:04 +context.c
4070 1502 63.0% 29-Oct-96 19:33:04 +context.h
14695 3161 78.4% 29-Oct-96 19:33:04 +copypix.c
1227 674 45.0% 29-Oct-96 19:33:04 +copypix.h
11882 3335 71.9% 29-Oct-96 19:33:04 +dd.h
18564 4670 74.8% 29-Oct-96 19:33:06 +ddsample.c
7008 1098 84.3% 29-Oct-96 19:32:54 +depend
19595 3726 80.9% 29-Oct-96 19:33:06 +depth.c
3040 1017 66.5% 29-Oct-96 19:33:06 +depth.h
71905 14220 80.2% 29-Oct-96 19:33:06 +dlist.c
13559 2435 82.0% 29-Oct-96 19:33:06 +dlist.h
56559 10518 81.4% 29-Oct-96 19:33:06 +draw.c
2021 819 59.4% 29-Oct-96 19:33:06 +draw.h
28767 5754 79.9% 29-Oct-96 19:33:06 +drawpix.c
1318 683 48.1% 29-Oct-96 19:33:06 +drawpix.h
15394 2997 80.5% 29-Oct-96 19:33:06 +enable.c
1344 670 50.1% 29-Oct-96 19:33:06 +enable.h
73269 11029 84.9% 29-Oct-96 19:33:08 +eval.c
3555 976 72.5% 29-Oct-96 19:33:08 +eval.h
9512 2285 75.9% 29-Oct-96 19:33:08 +feedback.c
2086 898 56.9% 29-Oct-96 19:33:08 +feedback.h
2030 931 54.1% 29-Oct-96 19:33:08 +fixed.h
11024 2277 79.3% 29-Oct-96 19:33:08 +fog.c
1694 767 54.7% 29-Oct-96 19:33:08 +fog.h
93457 15123 83.8% 29-Oct-96 19:33:08 +get.c
1341 673 49.8% 29-Oct-96 19:33:08 +get.h
38987 9511 75.6% 29-Oct-96 19:33:08 +glx.c
16136 3586 77.7% 29-Oct-96 19:33:10 +image.c
2006 852 57.5% 29-Oct-96 19:33:10 +image.h
1474 582 60.5% 29-Oct-96 19:32:54 +Imakefile
4874 1605 67.0% 29-Oct-96 19:33:10 +interp.c
3432 1338 61.0% 29-Oct-96 19:33:10 +interp.h
41001 8892 78.3% 29-Oct-96 19:33:10 +light.c
3448 952 72.3% 29-Oct-96 19:33:10 +light.h
22832 4167 81.7% 29-Oct-96 19:33:10 +lines.c
1230 665 45.9% 29-Oct-96 19:33:10 +lines.h
6678 1381 79.3% 29-Oct-96 19:33:10 +logic.c
1398 711 49.1% 29-Oct-96 19:33:10 +logic.h
5816 2145 63.1% 29-Oct-96 19:33:10 +macros.h
2286 1184 48.2% 29-Oct-96 19:32:54 +Makefile
2076 1114 46.3% 29-Oct-96 19:32:54 +Makefile.NeXT
4890 1398 71.4% 29-Oct-96 19:33:10 +masking.c
2376 849 64.2% 29-Oct-96 19:33:10 +masking.h
18145 5392 70.2% 29-Oct-96 19:33:10 +matrix.c
2114 852 59.6% 29-Oct-96 19:33:10 +matrix.h
10525 2398 77.2% 29-Oct-96 19:32:54 +MesaGLos2.def
620 254 59.0% 29-Oct-96 19:32:54 +MesaGLos2.rsp
12013 3028 74.7% 29-Oct-96 19:33:10 +misc.c
1734 778 55.1% 29-Oct-96 19:33:12 +misc.h
24625 5597 77.2% 29-Oct-96 19:33:12 +osmesa.c
12756 2740 78.5% 29-Oct-96 19:33:12 +pb.c
4060 1503 62.9% 29-Oct-96 19:33:12 +pb.h
25027 4779 80.9% 29-Oct-96 19:33:12 +pixel.c
2564 919 64.1% 29-Oct-96 19:33:12 +pixel.h
17293 3660 78.8% 29-Oct-96 19:33:12 +pointers.c
1118 632 43.4% 29-Oct-96 19:33:12 +pointers.h
14337 3116 78.2% 29-Oct-96 19:33:12 +points.c
1155 647 43.9% 29-Oct-96 19:33:12 +points.h
3630 1242 65.7% 29-Oct-96 19:33:12 +polygon.c
1484 715 51.8% 29-Oct-96 19:33:12 +polygon.h
23824 4277 82.0% 29-Oct-96 19:33:12 +readpix.c
1239 676 45.4% 29-Oct-96 19:33:12 +readpix.h
2833 1235 56.4% 29-Oct-96 19:33:12 +scissor.c
1465 716 51.1% 29-Oct-96 19:33:14 +scissor.h
0 0 0.0% 14-Oct-96 00:02:58 +SCOPTIONS
4739 1893 60.0% 14-Oct-96 00:02:58 +Smakefile
24365 4206 82.7% 29-Oct-96 19:33:14 +span.c
2447 824 66.3% 29-Oct-96 19:33:14 +span.h
22677 4242 81.2% 29-Oct-96 19:33:14 +stencil.c
2391 857 64.1% 29-Oct-96 19:33:14 +stencil.h
13317 3085 76.8% 29-Oct-96 19:33:14 +svgamesa.c
44705 7349 83.5% 29-Oct-96 19:33:14 +teximage.c
4792 1066 77.7% 29-Oct-96 19:33:14 +teximage.h
10318 2392 76.8% 29-Oct-96 19:33:14 +texobj.c
1910 799 58.1% 29-Oct-96 19:33:14 +texobj.h
64430 9352 85.4% 29-Oct-96 19:33:14 +texture.c
3472 959 72.3% 29-Oct-96 19:33:14 +texture.h
19116 3961 79.2% 29-Oct-96 19:33:16 +triangle.c
1110 627 43.5% 29-Oct-96 19:33:16 +triangle.h
28948 7935 72.5% 29-Oct-96 19:33:16 +tritemp.h
38704 10059 74.0% 29-Oct-96 19:33:16 +types.h
40643 5923 85.4% 29-Oct-96 19:33:16 +varray.c
3127 898 71.2% 29-Oct-96 19:33:16 +varray.h
1319 738 44.0% 29-Oct-96 19:33:16 +vb.c
3844 1681 56.2% 29-Oct-96 19:33:16 +vb.h
5256 1369 73.9% 29-Oct-96 19:33:16 +vertex.c
2254 809 64.1% 29-Oct-96 19:33:16 +vertex.h
3032 1362 55.0% 29-Oct-96 19:33:16 +winpos.c
2263 791 65.0% 29-Oct-96 19:33:16 +winpos.h
25669 6327 75.3% 29-Oct-96 19:33:16 +wmesa.c
9180 3434 62.5% 29-Oct-96 19:33:18 +xfonts.c
7241 2006 72.2% 29-Oct-96 19:33:18 +xform.c
2541 1068 57.9% 29-Oct-96 19:33:18 +xform.h
41091 11413 72.2% 29-Oct-96 19:33:18 +xmesa1.c
86785 10498 87.9% 29-Oct-96 19:33:18 +xmesa2.c
56948 7251 87.2% 29-Oct-96 19:33:18 +xmesa3.c
10630 3874 63.5% 29-Oct-96 19:33:18 +xmesaP.h
423 260 38.5% 29-Oct-96 19:34:12 +errcheck.c
1380 610 55.7% 29-Oct-96 19:34:12 +glutskel.c
462 243 47.4% 29-Oct-96 19:34:12 +idproj.c
2578 1045 59.4% 29-Oct-96 19:34:12 +mwmborder.c
1346 410 69.5% 29-Oct-96 19:34:12 +projshad.c
440 261 40.6% 29-Oct-96 19:34:12 +README
151 118 21.8% 29-Oct-96 19:34:12 +readtex.c
849 413 51.3% 29-Oct-96 19:34:12 +winpos.c
136 106 22.0% 29-Oct-96 19:34:12 +xalloccolor.c
10369 4373 57.8% 29-Oct-96 19:32:48 +VERSIONS
1289 665 48.4% 29-Oct-96 19:33:46 +ChangeLog
16009 5395 66.3% 29-Oct-96 19:33:48 +config.guess
16318 5310 67.4% 29-Oct-96 19:33:48 +config.sub
64193 17069 73.4% 29-Oct-96 19:33:48 +configure
4984 2040 59.0% 29-Oct-96 19:33:48 +configure.in
17976 6986 61.1% 29-Oct-96 19:33:46 +COPYING
1274 610 52.1% 29-Oct-96 19:33:48 +ChangeLog
251 158 37.0% 29-Oct-96 19:33:48 +Cube
9022 2965 67.1% 29-Oct-96 19:33:50 +cube.c
648 306 52.7% 29-Oct-96 19:33:48 +Ed
21626 6170 71.4% 29-Oct-96 19:33:50 +ed.c
10887 3001 72.4% 29-Oct-96 19:33:50 +events
7446 2160 70.9% 29-Oct-96 19:33:48 +Makefile.in
355 190 46.4% 29-Oct-96 19:33:48 +Mcube
10192 3218 68.4% 29-Oct-96 19:33:50 +mcube.c
535 311 41.8% 29-Oct-96 19:33:48 +Tea
18882 6387 66.1% 29-Oct-96 19:33:50 +tea.c
1238 536 56.7% 29-Oct-96 19:33:50 +ChangeLog
6980 1903 72.7% 29-Oct-96 19:33:50 +GLwDrawA.h
4362 1580 63.7% 29-Oct-96 19:33:50 +GLwDrawAP.h
1051 631 39.9% 29-Oct-96 19:33:50 +GLwMDrawA.h
1054 632 40.0% 29-Oct-96 19:33:50 +GLwMDrawAP.h
2030 1014 50.0% 29-Oct-96 19:33:50 +Makefile.in
1693 752 55.5% 29-Oct-96 19:33:50 +MesaDrawingArea.h
3639 1086 70.1% 29-Oct-96 19:33:50 +MesaDrawingAreaP.h
4201 1067 74.6% 29-Oct-96 19:33:50 +MesaWorkstation.h
3204 1124 64.9% 29-Oct-96 19:33:50 +MesaWorkstationP.h
780 459 41.1% 29-Oct-96 19:33:48 +INSTALL
4771 1857 61.0% 29-Oct-96 19:33:50 +install-sh
4388 1618 63.1% 29-Oct-96 19:33:48 +Makefile.in
420 231 45.0% 29-Oct-96 19:33:52 +ChangeLog
4354 1887 56.6% 29-Oct-96 19:33:52 +GLwCreateMDrawingArea.3x
2032 683 66.3% 29-Oct-96 19:33:52 +GLwCreateMDrawingArea.html
971 464 52.2% 29-Oct-96 19:33:52 +GLwCreateMDrawingArea.pod
29052 8528 70.6% 29-Oct-96 19:33:52 +GLwDrawingArea.3x
28843 7582 73.7% 29-Oct-96 19:33:52 +GLwDrawingArea.html
24689 6902 72.0% 29-Oct-96 19:33:52 +GLwDrawingArea.pod
3905 1745 55.3% 29-Oct-96 19:33:52 +GLwDrawingAreaMakeCurrent.3x
1162 492 57.6% 29-Oct-96 19:33:52 +GLwDrawingAreaMakeCurrent.html
545 308 43.4% 29-Oct-96 19:33:52 +GLwDrawingAreaMakeCurrent.pod
3868 1728 55.3% 29-Oct-96 19:33:52 +GLwDrawingAreaSwapBuffers.3x
1127 476 57.7% 29-Oct-96 19:33:52 +GLwDrawingAreaSwapBuffers.html
510 295 42.1% 29-Oct-96 19:33:52 +GLwDrawingAreaSwapBuffers.pod
2477 1164 53.0% 29-Oct-96 19:33:54 +Makefile.in
5969 2300 61.4% 29-Oct-96 19:33:54 +MesaDrawingArea.3x
3613 1079 70.1% 29-Oct-96 19:33:54 +MesaDrawingArea.html
2560 856 66.5% 29-Oct-96 19:33:54 +MesaDrawingArea.pod
7709 2554 66.8% 29-Oct-96 19:33:54 +MesaWorkstation.3x
9019 1452 83.9% 29-Oct-96 19:33:54 +MesaWorkstation.html
4141 1089 73.7% 29-Oct-96 19:33:54 +MesaWorkstation.pod
2675 1404 47.5% 29-Oct-96 19:33:48 +README
3616 1404 61.1% 29-Oct-96 19:33:54 +ChangeLog
1298 741 42.9% 29-Oct-96 19:33:54 +GLwCreateMDrawingArea.c
20799 5906 71.6% 29-Oct-96 19:33:54 +GLwDrawingArea.c
1224 709 42.0% 29-Oct-96 19:33:54 +GLwDrawingAreaMakeCurrent.c
1182 689 41.7% 29-Oct-96 19:33:54 +GLwDrawingAreaSwapBuffers.c
1366 770 43.6% 29-Oct-96 19:33:54 +GLwMakeCurrent.c
1061 628 40.8% 29-Oct-96 19:33:54 +GLwMDrawingArea.c
5104 1595 68.7% 29-Oct-96 19:33:56 +Makefile.in
8603 2804 67.4% 29-Oct-96 19:33:56 +MesaDrawingArea.c
20042 4608 77.0% 29-Oct-96 19:33:56 +MesaWorkstation.c
1025 523 48.9% 29-Oct-96 19:33:48 +TODO
14298 4620 67.6% 29-Oct-96 19:33:56 +boilerplate.c
259 101 61.0% 29-Oct-96 19:33:56 +depend
24543 6704 72.6% 29-Oct-96 19:33:56 +GLwDrawA.c
6611 2407 63.5% 29-Oct-96 19:33:56 +GLwDrawA.h
4291 1650 61.5% 29-Oct-96 19:33:56 +GLwDrawAP.h
2030 1120 44.8% 29-Oct-96 19:33:56 +GLwMDrawA.c
2030 1120 44.8% 29-Oct-96 19:33:56 +GLwMDrawA.h
2031 1121 44.8% 29-Oct-96 19:33:56 +GLwMDrawAP.h
873 487 44.2% 29-Oct-96 19:33:56 +Makefile
2490 1352 45.7% 29-Oct-96 19:33:56 +README
3914 1827 53.3% 29-Oct-96 19:33:56 +ROBOT.C
4929 2138 56.6% 29-Oct-96 19:33:56 +TEA.C
227 157 30.8% 29-Oct-96 19:33:56 +BOUNC-MS.DEF
1552 184 88.1% 29-Oct-96 19:33:56 +BOUNC-MS.DPD
28288 9280 67.1% 29-Oct-96 19:33:58 +BOUNC-MS.IDE
148 125 15.5% 29-Oct-96 19:33:58 +BOUNC-MS.LNK
6479 1699 73.7% 29-Oct-96 19:33:58 +BOUNC-MS.MAK
23117 696 96.9% 29-Oct-96 19:33:58 +BOUNC-MS.OPN
3615 519 85.6% 29-Oct-96 19:33:58 +BOUNC-MS.PRJ
2826 1234 56.3% 29-Oct-96 19:33:58 +BOUNCE.C
2816 1015 63.9% 29-Oct-96 19:33:58 +SPIN.C
69 58 15.9% 29-Oct-96 19:33:58 +GLAUX.DEF
1927 231 88.0% 29-Oct-96 19:33:58 +GLAUX.DPD
43578 12953 70.2% 29-Oct-96 19:33:58 +GLAUX.IDE
224 96 57.1% 29-Oct-96 19:33:58 +GLAUX.LIK
231 109 52.8% 29-Oct-96 19:33:58 +GLAUX.LNK
7980 1920 75.9% 29-Oct-96 19:33:58 +GLAUX.MAK
3727 524 85.9% 29-Oct-96 19:33:58 +GLAUX.PRJ
6392 1420 77.7% 29-Oct-96 19:33:58 +BOUNCE.MAK
6368 1415 77.7% 29-Oct-96 19:34:00 +GEARS.MAK
6929 1353 80.4% 29-Oct-96 19:34:00 +GLAUX.MAK
742 455 38.6% 29-Oct-96 19:34:00 +README
6392 1418 77.8% 29-Oct-96 19:34:00 +SHADOW.MAK
6344 1414 77.7% 29-Oct-96 19:34:00 +SPIN.MAK
4575 1176 74.2% 29-Oct-96 19:34:00 +TK.MAK
6445 1377 78.6% 29-Oct-96 19:34:00 +WAVE.MAK
6856 1336 80.5% 29-Oct-96 19:34:00 +WINGLU.MAK
24914 2797 88.7% 29-Oct-96 19:34:00 +WINMESA.MAK
15186 14672 3.3% 29-Oct-96 19:34:00 +WMESA128.ZIP
3236 1519 53.0% 29-Oct-96 19:34:00 +README
223 153 31.3% 29-Oct-96 19:34:00 +ROBOT-MS.DEF
86 62 27.9% 29-Oct-96 19:34:00 +ROBOT-MS.DPD
152 121 20.3% 29-Oct-96 19:34:00 +ROBOT-MS.LNK
4178 1300 68.8% 29-Oct-96 19:34:00 +ROBOT-MS.MAK
23117 694 96.9% 29-Oct-96 19:34:02 +ROBOT-MS.OPN
415 186 55.1% 29-Oct-96 19:34:02 +ROBOT-MS.PRJ
223 153 31.3% 29-Oct-96 19:34:02 +SPIN-MS.DEF
1544 182 88.2% 29-Oct-96 19:34:02 +SPIN-MS.DPD
145 122 15.8% 29-Oct-96 19:34:02 +SPIN-MS.LNK
6473 1688 73.9% 29-Oct-96 19:34:02 +SPIN-MS.MAK
37749 996 97.3% 29-Oct-96 19:34:02 +SPIN-MS.OPN
3609 519 85.6% 29-Oct-96 19:34:02 +SPIN-MS.PRJ
223 153 31.3% 29-Oct-96 19:34:02 +TEA-MS.DEF
148 72 51.3% 29-Oct-96 19:34:02 +TEA-MS.DPD
137 116 15.3% 29-Oct-96 19:34:02 +TEA-MS.LNK
4146 1293 68.8% 29-Oct-96 19:34:02 +TEA-MS.MAK
23117 694 96.9% 29-Oct-96 19:34:02 +TEA-MS.OPN
384 181 52.8% 29-Oct-96 19:34:02 +TEA-MS.PRJ
224 153 31.6% 29-Oct-96 19:34:02 +TEST0-MS.DEF
76 61 19.7% 29-Oct-96 19:34:02 +TEST0-MS.DPD
121 101 16.5% 29-Oct-96 19:34:02 +TEST0-MS.LNK
4172 1291 69.0% 29-Oct-96 19:34:02 +TEST0-MS.MAK
37749 996 97.3% 29-Oct-96 19:34:04 +TEST0-MS.OPN
441 181 58.9% 29-Oct-96 19:34:04 +TEST0-MS.PRJ
69 58 15.9% 29-Oct-96 19:34:04 +TK.DEF
554 149 73.1% 29-Oct-96 19:34:04 +TK.DPD
26230 8536 67.4% 29-Oct-96 19:34:04 +TK.IDE
50 50 0.0% 29-Oct-96 19:34:04 +TK.LIK
72 67 6.9% 29-Oct-96 19:34:04 +TK.LNK
6702 1730 74.1% 29-Oct-96 19:34:04 +TK.MAK
3496 487 86.0% 29-Oct-96 19:34:04 +TK.PRJ
223 153 31.3% 29-Oct-96 19:34:04 +WAVE-MS.DEF
1134 171 84.9% 29-Oct-96 19:34:04 +WAVE-MS.DPD
156 126 19.2% 29-Oct-96 19:34:04 +WAVE-MS.LNK
6474 1687 73.9% 29-Oct-96 19:34:04 +WAVE-MS.MAK
3586 509 85.8% 29-Oct-96 19:34:04 +WAVE-MS.PRJ
69 58 15.9% 29-Oct-96 19:34:04 +WINGLU.DEF
734 129 82.4% 29-Oct-96 19:34:04 +WINGLU.DPD
42078 12631 69.9% 29-Oct-96 19:34:06 +WINGLU.IDE
198 89 55.0% 29-Oct-96 19:34:06 +WINGLU.LIK
203 105 48.2% 29-Oct-96 19:34:06 +WINGLU.LNK
5545 1525 72.4% 29-Oct-96 19:34:06 +WINGLU.MAK
624 211 66.1% 29-Oct-96 19:34:06 +WINGLU.PRJ
71 58 18.3% 29-Oct-96 19:34:06 +WINMESA.DEF
7959 818 89.7% 29-Oct-96 19:34:06 +WINMESA.DPD
46062 14525 68.4% 29-Oct-96 19:34:06 +WINMESA.IDE
1090 233 78.6% 29-Oct-96 19:34:06 +WINMESA.LIK
1032 241 76.6% 29-Oct-96 19:34:06 +WINMESA.LNK
14639 2830 80.6% 29-Oct-96 19:34:06 +WINMESA.MAK
23117 700 96.9% 29-Oct-96 19:34:06 +WINMESA.OPN
5522 813 85.2% 29-Oct-96 19:34:06 +WINMESA.PRJ
546 270 50.5% 29-Oct-96 19:34:06 +accumvc4.mak
536 267 50.1% 29-Oct-96 19:34:06 +nurbvc4.mak
542 269 50.3% 29-Oct-96 19:34:06 +olympicvc4.mak
399 241 39.5% 29-Oct-96 19:34:06 +README
546 271 50.3% 29-Oct-96 19:34:06 +shapevc4.mak
538 267 50.3% 29-Oct-96 19:34:08 +speedvc4.mak
543 270 50.2% 29-Oct-96 19:34:08 +wavevc4.mak
352 213 39.4% 29-Oct-96 19:34:08 +wmglauxvc4.mak
324 195 39.8% 29-Oct-96 19:34:08 +wmgluvc4.mak
851 419 50.7% 29-Oct-96 19:34:08 +wmglvc4.mak
287 178 37.9% 29-Oct-96 19:34:08 +wtkvc4.mak
-------- ------- ----- --------- --------
5702011 1529758 73.1% 30-Oct-96 13:14:26 584 files